home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000375_jaltman2@nyc.rr.com_Thu Mar 13 09:49:35 EST 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  46 lines

  1. Article: 14173 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!phl-feed.news.verio.net!iad-feed.news.verio.net!iad-peer.news.verio.net!news.verio.net!fu-berlin.de!nf3.bellglobal.com!cyclone.mw.ipsvc.net!news.mw.ipsvc.net!cyclone.kc.rr.com!news-east.rr.com!news-server.columbus.rr.com!cyclone.rdc-nyc.rr.com!news-out.nyc.rr.com!twister.nyc.rr.com.POSTED!not-for-mail
  3. From: "Jeffrey Altman [Road Runner NYC]" <jaltman2@nyc.rr.com>
  4. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030210
  5. X-Accept-Language: en-us, en
  6. MIME-Version: 1.0
  7. Newsgroups: comp.unix.bsd.freebsd.misc,comp.protocols.kermit.misc
  8. Subject: Re: sample freebsd ckermit w/ security makefile
  9. References: <805c1bb5.0303120729.719980ee@posting.google.com>
  10. In-Reply-To: <805c1bb5.0303120729.719980ee@posting.google.com>
  11. Content-Type: text/plain; charset=us-ascii; format=flowed
  12. Content-Transfer-Encoding: 7bit
  13. Lines: 23
  14. Message-ID: <EbWba.127873$ma2.24333401@twister.nyc.rr.com>
  15. Date: Thu, 13 Mar 2003 07:12:36 GMT
  16. NNTP-Posting-Host: 66.108.138.151
  17. X-Complaints-To: abuse@rr.com
  18. X-Trace: twister.nyc.rr.com 1047539556 66.108.138.151 (Thu, 13 Mar 2003 02:12:36 EST)
  19. NNTP-Posting-Date: Thu, 13 Mar 2003 02:12:36 EST
  20. Organization: Road Runner - NYC
  21. Xref: newsmaster.cc.columbia.edu comp.unix.bsd.freebsd.misc:232451 comp.protocols.kermit.misc:14173
  22.  
  23. boz wrote:
  24. > Anyone have any sample makefiles for ssl/tls security to be added to
  25. > ckermit 8.0?  I'm running freebsd 5.0, and can compile the default
  26. > makefile for 8.0.208
  27. > On a (somewhat related topic) I have uploaded the binary for .208
  28. > freebsd 5.0 to kermit.columbia.edu -- don't know when they'll post it
  29. > live on the website
  30. > Trying not to have to reinvent the wheel.
  31. > TIA,
  32.  
  33. freebsd50+openssl:
  34.      @echo 'Making C-Kermit $(CKVER) for FreeBSD 5.0, ncurses, openssl'
  35.      $(MAKE) xermit KTARGET=$${KTARGET:-$(@)} \
  36.      "CFLAGS= -DBSD44 -DCK_NCURSES -DCK_NEWTERM -DTCPSOCKET -DNOCOTFMC \
  37.      -DCK_AUTHENTICATION -DCK_SSL $(SSLINC) -DZLIB \
  38.      -DFREEBSD4 -DUSE_UU_LOCK -DFNFLOAT -funsigned-char -DTPUTSARGTYPE=int \
  39.      -DFREEBSD41 -DFREEBSD42 -DFREEBSD43 -DFREEBSD44 -DFREEBSD45 \
  40.      -DFREEBSD46 -DFREEBSD50 -DUSE_STRERROR $(KFLAGS) -O -pipe" \
  41.      "LIBS= -lncurses -lcrypt -lssl -lcrypto -lutil -lm $(SSLLIB) $(LIBS)"
  42.  
  43.